home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / pascal / spoc88.zip / LOOPS.ZIP / DESCRIPT.CIS next >
Text File  |  1988-06-13  |  333b  |  7 lines

  1. "Getting in the LOOP" -- Tom Wrona
  2. The key to structured programming in Turbo Basic is learning how to repeat
  3. blocks of statements without GOTOs.  This is done using the LOOP statement,
  4. as explained with examples from the MicroCalc spreadsheet program.
  5.  
  6. TURBO BASIC LOOPS GOTO FOR NEXT MICROCALC DO WHILE WEND LOOP UNTIL EXIT
  7.